home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 008 / src / def.edog.h < prev    next >
C/C++ Source or Header  |  1995-03-17  |  434b  |  12 lines

  1. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1984. */
  2.  
  3. struct edog {
  4.     long hungrytime;    /* at this time dog gets hungry */
  5.     long eattime;        /* dog is eating */
  6.     long droptime;        /* moment dog dropped object */
  7.     unsigned dropdist;        /* dist of drpped obj from @ */
  8.     unsigned apport;        /* amount of training */
  9.     long whistletime;        /* last time he whistled */
  10. };
  11. #define    EDOG(mp)    ((struct edog *)(&(mp->mextra[0])))
  12.